home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / gt700.arc / GT.BAT < prev    next >
DOS Batch File  |  1986-07-08  |  1KB  |  55 lines

  1. echo off
  2. echo .
  3. echo .   Use this .BAT file to run GT from a RAM disk.
  4. echo .
  5. if "%1" == "" goto warn
  6. if "%2" == "" goto warn
  7. echo .   Once GT has been started, the program disk can be removed,
  8. echo .   but it will be needed when you exit GT.
  9. echo .
  10. echo .   NOTE: You may need to change the "Phone Directory PATH" in the
  11. echo .         GT configuration file.  Use the ALT-I command, then set
  12. echo .         it to point to the RAM disk.
  13. echo .
  14. pause
  15. echo .
  16. echo .   Loading files to the RAM disk.
  17. echo .
  18. %2
  19. echo on
  20. copy %1gt700.000
  21. copy %1gt.dir
  22. copy %1gt.cnf
  23. copy %1gt.key
  24. copy %1gt.log
  25. echo off
  26. %1gt700 %3
  27. %1
  28. echo .
  29. echo .   Saving the configuration and directory files.
  30. echo .
  31. echo on
  32. copy %2gt.dir
  33. copy %2gt.cnf
  34. copy %2gt.key
  35. copy %2gt.log
  36. goto fin
  37. :warn
  38. echo .
  39. echo .   ERROR: You must specify the drives to use!
  40. echo .
  41. echo .          Example:  "GT  A: C: S".
  42. echo .
  43. echo .            Where:  A: is the program disk and
  44. echo .                    C: is the RAM disk, and
  45. echo .                    S  is optional, the name of a
  46. echo .                       script to execute, when GT is
  47. echo .                       started.
  48. echo .
  49. echo .             Also:  The user should manually set the
  50. echo .                    desired directories on each drive
  51. echo .                    before executing this .BAT file.
  52. echo .
  53. echo on
  54. :fin
  55.